/*Hide radio buttons*/
.rate > input{
    display: none;
}

.rate{
    display: inline-block;
    border: 0;
}

.rate > label{
    float: right;
}

/* Show stars*/

.rate > label::before{
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1.1rem;
    content: "\f005";
    margin: 0;
    padding: 0.3rem 0.2rem;
    cursor: pointer;
}
/* Half star*/
.rate .half::before{
    content: "\f089";
    position: absolute;
    padding-right: 0;
}

/*Hover & Click */
input:checked ~ label, label:hover ~ label{
    color: #ffb503;
}

/*hover hightlight*/
input:checked + label:hover, input:checked ~ label:hover, input:checked ~ label:hover ~ label,
label:hover ~ input:checked ~ label{
    color: #cc9000;
}

/*Imagenes miniatura de product_detail*/

ul.thumb{
    margin: 0 auto;
    padding: 0;
    float: left;
}

ul.thumb li{
    list-style: none;
    margin: 10px;
}

ul.thumb li img{
    width: 80px;
    height: 80px;
    border: 1px solid rgb(169, 160, 173);
}